home *** CD-ROM | disk | FTP | other *** search
- !!Script
- // Copyright ⌐ 1997-1998 - Modelworks Software
-
- // Insert script helper for:
-
- /**
- @Object: Math
- @Method: sqrt(<I>number</I>) - returns the square root of a number.
- @Syntax: Math.sqrt(number)
- @Summary: sqrt - returns the square root of a number
- */
-
- function DoCommand()
- {
- var editor = getActiveEditor();
- if (editor)
- {
- var selection = editor.getSelection();
- editor.replace("Math.sqrt(number)", selection);
- editor.setActive("Insert Math.sqrt");
- }
- }
-
- !!/Script
-